home *** CD-ROM | disk | FTP | other *** search
/ Daddy Day Care Press Kit / Daddy Day Care Press Kit.iso / pc / acrobat reader 5 pc / plug_ins / weblink.api / EXVW / 14998 < prev    next >
Text File  |  2002-12-13  |  588b  |  22 lines

  1. gVerticalGapHeight = gStaticTextHeight / 4;
  2.  
  3. dialog(name: '$$$/Dialogs/Weblink/EditURL', target_id: 'eURL')
  4. {
  5.     group()
  6.     {
  7.         view(align_children: align_left)
  8.         {
  9.             static_text( name: '$$$/Dialogs/Weblink/EditURL/EnterURLforLink' );
  10.             edit_text( item_id: 'dURL', width: max_char_width() * 30, PopupEdit: true);
  11.         }
  12.         view( align_children: align_left )
  13.         {
  14.             static_text( item_id: 'tURL', name: '$$$/Dialogs/Weblink/EditURL/BaseURL' );
  15.             static_text( item_id: 'bURL', width: max_char_width() * 30 );
  16.         }
  17.         
  18.         gap( height: gVerticalGapHeight );
  19.         
  20.         ok_cancel();
  21.     }
  22. }